home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / gnat1792.zip / gnat179b / t-adainc / a-interr.ads < prev    next >
Text File  |  1994-05-19  |  3KB  |  61 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                       A D A . I N T E R R U P T S                        --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.3 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. with System;
  26.  
  27. package Ada.Interrupts is
  28.  
  29.    pragma Unimplemented_Unit;
  30.  
  31.    type Interrupt_Id is new Natural;   -- temporary definition for now ???
  32.  
  33.    type Parameterless_Handler is
  34.       access protected procedure;
  35.  
  36.    function Is_Reserved (Interrupt : Interrupt_Id)
  37.       return Boolean;
  38.  
  39.    function Is_Attached (Interrupt : Interrupt_Id)
  40.       return Boolean;
  41.  
  42.    function Current_Handler (Interrupt : Interrupt_Id)
  43.       return Parameterless_Handler;
  44.  
  45.    procedure Attach_Handler
  46.       (New_Handler : Parameterless_Handler;
  47.        Interrupt   : Interrupt_Id);
  48.  
  49.    procedure Exchange_Handler
  50.       (Old_Handler : out Parameterless_Handler;
  51.        New_Handler : Parameterless_Handler;
  52.        Interrupt   : Interrupt_Id);
  53.  
  54.    procedure Detach_Handler
  55.       (Interrupt : Interrupt_Id);
  56.  
  57.    function Reference (Interrupt : Interrupt_Id)
  58.       return System.Address;
  59.  
  60. end Ada.Interrupts;
  61.